home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
.net (French) 1997 February
/
.net Magazine (FR) - Issue 04 - Feb 1997.iso
/
pc
/
partners
/
havas
/
win95
/
isp.scp
< prev
next >
Wrap
Text File
|
1996-10-15
|
709b
|
43 lines
;
; This is a script file that demonstrates how
; to establish a PPP connection with a host
; that uses a menu system.
;
; A script file must have a 'main' procedure.
; All script execution starts with this 'main'
; procedure.
;
; Main entry point to script
;
proc main
; Delay for 3 seconds first to allow host time
; to send initial characters.
delay 2
transmit "^M"
; Wait for the login prompt before entering
; the user ID
waitfor "Ser?"
transmit "hol"
transmit "^M"
waitfor "name:"
transmit $USERID
transmit "^M"
; Enter the password
waitfor "word:"
transmit $PASSWORD
transmit "^M"
delay 2
endproc